home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / audacity / audacity-win-1.2.4b.exe / {app} / Plug-Ins / beat.ny next >
Lisp/Scheme  |  2002-09-16  |  583b  |  17 lines

  1. ;nyquist plug-in
  2. ;version 1
  3. ;type analyze
  4. ;name "Beat Finder..."
  5. ;action "Finding beats..."
  6. ;control thresval "Threshold" int "%" 85 50 100
  7. (setf s1 (if (arrayp s) (snd-add (aref s 0) (aref s 1)) s))
  8. (defun signal () (force-srate 1000 (lp (snd-follow (lp s1 50) 0.001 0.01 0.1 512) 10)))
  9. (setq max (peak (signal) NY:ALL))
  10. (setq thres (* (/ thresval 100.0) max))
  11. (setq s2 (signal))
  12. (do ((c 0.0) (l NIL) (p T) (v (snd-fetch s2))) ((not v) l)
  13.  (if (and p (> v thres)) (setq l (cons (list c "B") l)))
  14.  (setq p (< v thres))
  15.  (setq c (+ c 0.001))
  16.  (setq v (snd-fetch s2)))
  17.